home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2004 June
/
PCWorld_2004-06_cd.bin
/
software
/
vyzkuste
/
koolmoves
/
kmsetup.exe
/
{app}
/
Motion Scripts
/
Punch Wave
/
effect2.txt
Wrap
Text File
|
2004-02-26
|
430b
|
25 lines
// main_init function
main_init = function(mc){
}
// main_effect function
main_effect = function(mc,frame){
if(subs_done) end_effect=true;
}
// sub_init function
sub_init = function(mc){
}
// sub_effect function
sub_effect = function(mc,frame){
perc = frame / lastsubframe;
mc._xscale = mc._yscale = 100 + (max_scale - 100) * Math.sin(perc * deg180);
if (frame == lastsubframe) mc.done=true;
}